home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / BPAS9.ARJ / FORLUP.PAS < prev    next >
Pascal/Delphi Source File  |  1991-03-09  |  153b  |  13 lines

  1.  
  2.  
  3. program Forlup;
  4. var
  5.   Count  : integer;
  6. begin
  7.   for Count := 1 to 10 do
  8.   begin
  9.     Writeln(Count);
  10.   end;
  11.   Writeln('Stop');
  12.   Readln
  13. end.